format

pure function format(args: anything...): text

Uses this string as a format string and returns a string obtained by substituting the specified arguments. Uses java.lang.String.format internally.

Since

0.6.0

Parameters

args

Arguments referenced by the format specifiers in the format string. If there are more arguments than format specifiers, the extra arguments are ignored. The number of arguments is variable and may be zero.